home *** CD-ROM | disk | FTP | other *** search
- /* newgame.c - NewGame */
-
- #include "mac/quickdraw.h"
- #include "mac/osintf.h"
- #include "mac/toolintf.h"
- #include "othello.h"
-
-
-
- NewGame()
- {
- int row, col;
-
- ClearMessages();
- strcpy(message, "New game");
- StopThinking = TRUE;
- GameOver = FALSE;
- curColor = stoneWhite;
- for (row = 1; row <= BOARDSIZE; ++row)
- for (col = 1; col <= BOARDSIZE; ++col)
- PlaceStone(row, col, stoneEmpty);
- nStones[stoneEmpty] = BOARDSIZE*BOARDSIZE; /* Just to make sure*/
- nStones[stoneWhite] = nStones[stoneBlack] = 0;
- InitBoard();
- UpdateInfo();
- }
-